.glow {
       color: #fff;
      text-shadow: none;
      animation: glowPulse 0.5s infinite alternate;
    }

    @keyframes glowPulse {
      from {
        text-shadow: 
          0 0 10px #45E545,
          0 0 80px #45E545;
      }
      to {
        text-shadow: 
          0 0 20px #45E545,
          0 0 40px #45E545,
          0 0 50px #45E545,
          0 0 80px #45E545,
          0 0 100px #45E545,
          0 0 120px #45E545;

      }
        }    
.blink h2 {
 
  animation: blinkText 0.5s infinite steps(1, start);
}

@keyframes blinkText {
  0%   { color: black; }
  50%  { color: black; }
  51%  { color: white; }
  100% { color: white; }
}


.list ul {
  list-style-type: disc;      /* hollow circle */
  padding-left: 1.5em;          /* space for bullets */
  display: inline-grid;
}

.list ul li {
  color: #fff;                  /* text stays white */
  position: relative;
  margin-bottom: 8px;
}

/* Make bullets bigger and green */
.list ul li::marker {
  color: #45E545;
  font-size: 1.6em;              /* increase bullet size */
}



 .video-wrap {
    max-width: 900px;      /* container max width */
    margin: 0 auto;        /* center */
  }

  .video-wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;  /* keeps 16:9 ratio; change to 4/3 if needed */
    border: 0;
    display: block;
  }


.footerlinks a{
 color:#45E545 !important;
   
    
}    

